Get Project

Returns details of a specific project

Request
path Parameters
projectId
required
string
Responses
200

Ok

get/projects/{projectId}
Request samples

project = dl.projects.get(project_id='project_id')

# 
# Get a Project object.
# 
# **Prerequisites**: You must be in the role of an *owner* to get a project object.
# 
# You must check out to a project or provide at least one of the following params: project_id, project_name
# 
# :param str project_name: optional - search by name
# :param str project_id: optional - search by id
# :param bool checkout: set the project as a default project object (cookies)
# :param bool fetch: optional - fetch entity from platform (True), default taken from cookie
# :param bool log_error: optional - show the logs errors
# :return: Project object
# :rtype: dtlpy.entities.project.Project
# 
# 
Response samples
application/json
{
  • "id": "string",
  • "url": "string",
  • "createdAt": 0,
  • "updatedAt": 0,
  • "name": "string",
  • "contributors": [
    ],
  • "groups": [
    ],
  • "creator": {
    },
  • "org": {
    },
  • "account": {
    },
  • "featureConstraints": [
    ],
  • "guests": [
    ],
  • "role": "string",
  • "archived": true
}